home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 43 / Amiga Format CD43 (1999)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1999-09].iso / -serious- / programming / other / guigfxlib / doc / prefs < prev    next >
Text File  |  1999-06-14  |  2KB  |  56 lines

  1.  
  2. guigfx environment variables
  3. ----------------------------
  4.  
  5.   guigfx/USESCALEPIXELARRAY
  6.   internal default: 0
  7.  
  8.     use ScalePixelArray() / cybergraphics v41
  9.  
  10.     if you have cybergraphics v41 (or later) installed to
  11.     your system, this flag tells guigfx.library to use
  12.     ScalePixelArray() for scaling truecolor data to truecolor
  13.     displays.
  14.     
  15.     ScalePixelArray() scales inside the graphics card's memory
  16.     and can thereof be very fast. it is NOT used by default,
  17.     due to accuracy problems. ScalePixelArray()
  18.     
  19.     - uses an incorrect bresenham algorithm
  20.     - overwrites areas outside the specified rectangle
  21.     - overwrites areas outside the specified rastport
  22.     - flickers
  23.  
  24.     set this flag to 1 if you prefer higher performance
  25.     instead of higher accuracy.
  26.   
  27.     
  28.   guigfx/USEWPA8
  29.   internal default: 0
  30.  
  31.     use WritePixelArray() on native Amiga screenmodes
  32.  
  33.     the OS functions WriteChunkyPixels(), WritePixelArray8() and
  34.     WritePixelLine8() are awfully slow and almost unusable on
  35.     native Amiga displays. therefore, guigfx.library uses an
  36.     internal chunky-2-planar conversion for planar displays.
  37.  
  38.     there are very fast third-party patches available to
  39.     improve the performance of WritePixelArray(). if you
  40.     are using such a patch for WritePixelArray(), set this
  41.     flag to 1.
  42.     
  43.     note: this flag is meaningless for graphics card displays.
  44.  
  45.   
  46.   guigfx/AUTODITHERTHRESHOLD
  47.   internal default: 250
  48.  
  49.     set global default autodither threshold
  50.   
  51.     this setting allows you to set a global default for
  52.     guigfx.library's autodither feature. the lower, the earlier
  53.     dithering is activated.
  54.  
  55.     note: applications may override this global default value.
  56.